home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Launch_Form
- Caption = "Security Launcher"
- ClientHeight = 4875
- ClientLeft = 1950
- ClientTop = 1590
- ClientWidth = 4590
- ControlBox = 0 'False
- Height = 5280
- Icon = LAUNCH_F.FRX:0000
- Left = 1890
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = LAUNCH_F.FRX:0302
- ScaleHeight = 4875
- ScaleWidth = 4590
- Top = 1245
- Width = 4710
- Begin ListBox Password
- Height = 225
- Left = 0
- TabIndex = 5
- Top = 4560
- Visible = 0 'False
- Width = 1335
- End
- Begin ListBox Program
- Height = 225
- Left = 0
- TabIndex = 4
- Top = 0
- Visible = 0 'False
- Width = 1335
- End
- Begin CommandButton Exit
- Caption = "Exit"
- Height = 375
- Left = 2040
- TabIndex = 3
- Top = 4200
- Width = 2295
- End
- Begin CommandButton Maintenance
- Caption = "Maintenance"
- Height = 375
- Left = 2040
- TabIndex = 2
- Top = 3600
- Width = 2295
- End
- Begin CommandButton Launch
- Caption = "Launch"
- Height = 375
- Left = 2040
- TabIndex = 1
- Top = 3000
- Width = 2295
- End
- Begin ListBox ProgList
- Height = 2760
- Left = 2040
- TabIndex = 0
- Top = 120
- Width = 2295
- End
- Sub Exit_Click ()
- Call SaveINI
- End
- End Sub
- Sub Launch_Click ()
- If Launch_Form.ProgList.ListIndex < 0 Then
- MsgBox "No program selected", 0, "Launch"
- Exit Sub
- End If
- PassForm.Caption = "Password for " + Launch_Form.ProgList.Text
- Launch_Form.Program.ListIndex = Launch_Form.ProgList.ListIndex
- Launch_Form.Password.ListIndex = Launch_Form.ProgList.ListIndex
- ProgramName = Launch_Form.Program.Text
- ProgramPassword = Launch_Form.Password.Text
- Launch_Form.Visible = False
- PassForm.Visible = True
- End Sub
- Sub Maintenance_Click ()
- PassForm.Caption = "Master Password"
- PassForm.Visible = True
- End Sub
- Sub ProgList_DblClick ()
- If Launch_Form.ProgList.ListIndex < 0 Then
- MsgBox "No program selected"
- Exit Sub
- End If
- PassForm.Caption = "Password for " + Launch_Form.ProgList.Text
- Launch_Form.Program.ListIndex = Launch_Form.ProgList.ListIndex
- Launch_Form.Password.ListIndex = Launch_Form.ProgList.ListIndex
- ProgramName = Launch_Form.Program.Text
- ProgramPassword = Launch_Form.Password.Text
- Launch_Form.Visible = False
- PassForm.Visible = True
- End Sub
-